home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / renegade / xcbv30.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-06-22  |  2KB  |  54 lines

  1. @echo off
  2. echo.
  3. echo ■ Express Call-Back Verifier v3.0 Installation Utility ■
  4. echo.
  5. if not exist xcbvpack.fls goto wrongdir
  6. if .%1. == .. goto nodir
  7.  
  8. echo This program will perform a new installation of XCBV on your system.  You
  9. echo may press [CTRL]-C to abort this procedure at any time.  If you already have
  10. echo XCBV installed and just want to upgrade to this newer version, abort this
  11. echo program and run UPGRADE instead.
  12. echo.
  13. echo You specified '%1' as the target directory.
  14. echo This directory MUST already exist; if not, stop now and create it before
  15. echo installation.  Otherwise:
  16. echo.
  17. pause
  18. echo.
  19. echo Working...
  20. ren xcbvpack.fls *.exe >nul
  21. xcbvpack -y %1\
  22. ren xcbvpack.exe *.fls >nul
  23. if errorlevel 1 goto error
  24. del %1\*.doc >nul
  25. del %1\*.frm >nul
  26. copy *.doc %1 >nul
  27. copy *.frm %1 >nul
  28. echo.
  29. echo All necessary files have been installed in the target directory.  It is
  30. echo recommended that you read the main documentation (XCBV.DOC) if you haven't
  31. echo already.
  32. echo.
  33. echo TO COMPLETE YOUR INSTALLATION:
  34. echo ■  Go to the %1 directory.
  35. echo ■  Run CONFIG to set up XCBV for your system.
  36. echo ■  Use a text editor to modify the SPECIAL.TXT file.
  37. goto end
  38.  
  39. :wrongdir
  40. echo This program must be run from the directory containing XCBVPACK.FLS.
  41. goto end
  42.  
  43. :nodir
  44. echo Specify desired directory where you want to install XCBV (with
  45. echo no trailing backslash). This directory must already exist.
  46. echo Example:  INSTALL D:\BBS\DOORS\XCBV
  47. goto end
  48.  
  49. :error
  50. echo Error (Disk full?) -- Installation failed!
  51.  
  52. :end
  53. echo.
  54.